<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Léa Pollet</title>
    <description>The latest articles on DEV Community by Léa Pollet (@p0p0).</description>
    <link>https://dev.to/p0p0</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F910712%2Ffd6fdd6c-2c9c-4ef4-aac0-3d3507c1a34f.png</url>
      <title>DEV Community: Léa Pollet</title>
      <link>https://dev.to/p0p0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/p0p0"/>
    <language>en</language>
    <item>
      <title>Simplifier le développement de newsletters responsives avec MJML</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Sun, 23 Feb 2025 18:48:04 +0000</pubDate>
      <link>https://dev.to/p0p0/simplifier-le-developpement-de-newsletters-responsives-avec-mjml-jpn</link>
      <guid>https://dev.to/p0p0/simplifier-le-developpement-de-newsletters-responsives-avec-mjml-jpn</guid>
      <description>&lt;p&gt;Coder des emails en HTML est une véritable épreuve. Entre les balises&lt;br&gt;
&lt;code&gt;&amp;lt;table&amp;gt;&lt;/code&gt; à &lt;strong&gt;répétition&lt;/strong&gt;, le CSS inline *&lt;em&gt;obligatoire *&lt;/em&gt; et les nombreux clients mails qui interprètent le code différemment, créer une newsletter responsive et compatible partout peut vite devenir un cauchemar.&lt;/p&gt;

&lt;p&gt;Mais il existe une solution qui change la donne : &lt;strong&gt;&lt;a href="https://mjml.io" rel="noopener noreferrer"&gt;MJML&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  Pourquoi coder des emails en HTML est compliqué ?
&lt;/h2&gt;

&lt;p&gt;Contrairement au développement web classique, les emails HTML doivent être compatibles avec une multitude de clients mails** (Gmail, Outlook, Apple Mail, etc.), chacun ayant ses propres règles d’interprétation du code. Voici quelques-uns des défis :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Utilisation massive des balises &lt;code&gt;&amp;lt;table&amp;gt;&lt;/code&gt; pour structurer le contenu.&lt;/li&gt;
&lt;li&gt;CSS inline obligatoire pour garantir un rendu correct.&lt;/li&gt;
&lt;li&gt;Gestion du responsive laborieuse, souvent nécessitant des hacks.&lt;/li&gt;
&lt;li&gt;Problèmes d'affichage aléatoires selon les clients mails.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Avec plus de &lt;strong&gt;60% des emails ouverts sur mobile&lt;/strong&gt;, assurer un rendu responsive est essentiel, mais très complexe à réaliser en HTML pur.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2cpqz93jy4i4miv0nrg1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2cpqz93jy4i4miv0nrg1.png" alt="Image description" width="340" height="307"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Qu'est-ce que MJML ?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frx25fdhn6hcmi16jd6i1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frx25fdhn6hcmi16jd6i1.png" alt="Image description" width="512" height="208"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;MJML (Mailjet Markup Language) est un framework open-source créé par Mailjet qui simplifie la création d'emails responsives.&lt;/p&gt;

&lt;p&gt;L’idée est simple : vous codez avec des balises simplifiées et sémantiques (comme  ou ), et MJML compile votre code en un HTML optimisé et compatible avec la plupart des clients mails.&lt;/p&gt;

&lt;p&gt;Exemple :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;mjml&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;mj-body&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;mj-section&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;mj-column&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;mj-text&amp;gt;&lt;/span&gt;
          Bonjour le monde !
        &lt;span class="nt"&gt;&amp;lt;/mj-text&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;mj-button&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://example.com"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Cliquez ici&lt;span class="nt"&gt;&amp;lt;/mj-button&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;/mj-column&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/mj-section&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/mj-body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/mjml&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Ce simple code MJML se compile en un HTML complet avec toutes les balises &lt;code&gt;&amp;lt;table&amp;gt;&lt;/code&gt; nécessaires et du CSS inline pour assurer un rendu parfait.&lt;/p&gt;

&lt;h2&gt;
  
  
  Les avantages de MJML
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Responsive by design
&lt;/h3&gt;

&lt;p&gt;Chaque composant MJML est conçu pour être responsive par défaut. Plus besoin d’écrire des media queries complexes ou de tester chaque mise en page sur mobile.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Compatibilité multi-clients
&lt;/h3&gt;

&lt;p&gt;MJML génère un HTML optimisé pour les principaux clients mails, réduisant considérablement les risques de bugs d'affichage entre Outlook, Gmail, Yahoo, etc.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Gain de temps
&lt;/h3&gt;

&lt;p&gt;Le code MJML est plus court et plus lisible que le HTML traditionnel pour emails. Moins de lignes de code, moins de complexité, donc plus de productivité.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Intégration facile
&lt;/h3&gt;

&lt;p&gt;Les emails générés peuvent être directement intégrés dans des outils comme Mailchimp, Brevo (ex-Sendinblue), ou tout autre outil d’emailing.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Prévisualisation en temps réel
&lt;/h3&gt;

&lt;p&gt;Grâce aux outils comme l’éditeur en ligne de MJML ou des extensions pour VS Code, vous pouvez prévisualiser vos emails en temps réel tout en développant.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quand utiliser MJML ?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Si vous développez des newsletters régulièrement.&lt;/li&gt;
&lt;li&gt;Si vous cherchez à gagner du temps tout en garantissant un rendu parfait.&lt;/li&gt;
&lt;li&gt;Si vous voulez éviter les tracas liés à la compatibilité entre clients mails.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>opensource</category>
      <category>css</category>
    </item>
    <item>
      <title>The CIA Triad: Foundations of Cybersecurity</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Fri, 21 Jul 2023 17:12:26 +0000</pubDate>
      <link>https://dev.to/p0p0/the-cia-triad-foundations-of-cybersecurity-2nof</link>
      <guid>https://dev.to/p0p0/the-cia-triad-foundations-of-cybersecurity-2nof</guid>
      <description>&lt;p&gt;The &lt;a href="https://www.instagram.com/p/CoSc5pxoLca/?img_index=1" rel="noopener noreferrer"&gt;CIA Triad&lt;/a&gt; is a fundamental concept in the field of cybersecurity and serves as the cornerstone for safeguarding information and digital systems. This triad comprises three essential principles designed to ensure the integrity, confidentiality, and availability of sensitive data. Let's delve into these three pillars of security:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9qiuxywaizz2koxk5x5x.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9qiuxywaizz2koxk5x5x.jpg" alt="Image description" width="800" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Confidentiality:&lt;/strong&gt;&lt;br&gt;
Confidentiality refers to protecting information from unauthorized access. It ensures that only individuals with proper authorization can access specific data. Mechanisms such as encryption, authentication, and access controls are employed to maintain data confidentiality. For instance, when using a password to access an online account, confidentiality is ensured by preventing unauthorized entry.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr3e010zn94elbyizt7ha.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr3e010zn94elbyizt7ha.jpg" alt="Image description" width="311" height="162"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Integrity:&lt;/strong&gt;&lt;br&gt;
Integrity focuses on the reliability and accuracy of data. It guarantees that information remains unchanged and has not been altered without authorization. Accidental errors or malicious manipulations can have severe consequences, leading to incorrect decisions or unforeseen actions. To preserve integrity, techniques such as integrity checks, data hashing, and audit logs are used to detect any unwanted alterations.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnro1hlatcyhsjluae3vr.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnro1hlatcyhsjluae3vr.jpg" alt="Image description" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Availability:&lt;/strong&gt;&lt;br&gt;
Availability centers on ensuring that information and services are accessible and usable when needed. This involves making certain that systems remain operational and resilient to failures or attacks. Measures like backup solutions, redundancy, and business continuity planning are put in place to ensure availability. For example, a high-traffic website must be capable of supporting a large number of simultaneous users without experiencing service interruptions.&lt;/p&gt;

&lt;p&gt;The CIA Triad serves as the foundation of cybersecurity and is utilized by businesses, government organizations, and even individuals to protect sensitive information. These three principles work in tandem to create a secure and reliable environment, preventing unauthorized access, malicious manipulations, and service disruptions.&lt;/p&gt;

&lt;p&gt;In summary, the CIA Triad reminds us of the significance of &lt;strong&gt;keeping information confidential&lt;/strong&gt;, &lt;strong&gt;accurate&lt;/strong&gt;, and **available **to protect our digital data from potential threats and vulnerabilities. By applying these principles, we can strengthen our cybersecurity posture and minimize the risks of cyberattacks and data losses.&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>programming</category>
      <category>challenge</category>
      <category>security</category>
    </item>
    <item>
      <title>[EN] Cybersecurity: What are the best platforms?</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Mon, 07 Nov 2022 10:06:22 +0000</pubDate>
      <link>https://dev.to/p0p0/en-cybersecurity-what-are-the-best-platforms-4ka4</link>
      <guid>https://dev.to/p0p0/en-cybersecurity-what-are-the-best-platforms-4ka4</guid>
      <description>&lt;h3&gt;
  
  
  Are you interested in the world of cybersecurity? Logic, it's
&lt;/h3&gt;

&lt;p&gt;But how to learn it? This is a question whose answer remains very complicated, because the world of cybersecurity is wide.&lt;/p&gt;

&lt;p&gt;If you are looking to raise your awareness, ANSSI offers free training (MOOC) with a certificate of achievement: &lt;a href="https://secnumacademie.gouv.fr" rel="noopener noreferrer"&gt;MOOC training&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Good ! Back to our main topic! Here I am going to give you learning platforms subjectively, so it is also your duty to look for others!&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://tryhackme.com" rel="noopener noreferrer"&gt;Try Hack Me&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw538sxnngmw1p8insiak.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw538sxnngmw1p8insiak.png" alt="Try Hack Me platform" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One of my favorites! This platform offers a learning section and a practical section. We have a streak system (answering questions for several days from affiliates) and a ranking system! Also if you do not want to install a VM or the kali OS, Try Hack Me offers you the possibility of using a machine via the site directly! I find it very suitable to start!&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.root-me.org" rel="noopener noreferrer"&gt;Root Me&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6g3gofezmojjs2v98tru.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6g3gofezmojjs2v98tru.png" alt="Root Me platform" width="800" height="361"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Root me offered direct training via areas ranging from &lt;a href="https://en.wikipedia.org/wiki/Steganography" rel="noopener noreferrer"&gt;steganography&lt;/a&gt; to &lt;a href="https://owasp.org/www-community/attacks/xss/" rel="noopener noreferrer"&gt;XSS flaws&lt;/a&gt;. It offers job offers, CTFs, news etc!&lt;/p&gt;

&lt;p&gt;There is also their &lt;a href="https://www.twitch.tv/rootme_org" rel="noopener noreferrer"&gt;Twitch&lt;/a&gt; channel which is very interesting!&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.hackthebox.com" rel="noopener noreferrer"&gt;Hack The Box&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6idmggxx96257fuouy3d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6idmggxx96257fuouy3d.png" alt="Hack The Box platform" width="800" height="372"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I personally find it very complete, easy to use and with a very clean interface! It offers exercises by theme and platform! A grading and certification system via the &lt;a href="https://academy.hackthebox.com/" rel="noopener noreferrer"&gt;academy&lt;/a&gt;. Just like Root.me, HTB offers a listing of jobs and companies that are recruiting!&lt;/p&gt;

&lt;p&gt;👉 Hack The Box &lt;a href="https://discord.gg/hackthebox" rel="noopener noreferrer"&gt;discord&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.udemy.com" rel="noopener noreferrer"&gt;Udemy&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0dohbee390gd9l3ubi3e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0dohbee390gd9l3ubi3e.png" alt="Udemy platform" width="800" height="372"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Udemy is a platform that offers both paid and free solutions. They are "teachers" who offer courses on various subjects, including cybersecurity! They usually offer a certificate of achievement and a good portfolio. I tested several that suited me on a theoretical level, but which did not remain frustrating on the practical side. At first glance, the courses seem expensive, but you just have to wait a few days to get promotions!&lt;/p&gt;

&lt;p&gt;I recommend this training to learn the basics: &lt;a href="https://www.udemy.com/course/hacking-ethique-le-cours-complet/" rel="noopener noreferrer"&gt;Hacking Ethics: The Complete Course&lt;/a&gt; of &lt;a href="https://www.udemy.com/course/hacking-ethique-le-cours-complet/#instructor-1" rel="noopener noreferrer"&gt;Michel Kartner&lt;/a&gt; who is the founder of the site: &lt;a href="https://www.leblogduhacker.fr" rel="noopener noreferrer"&gt;Le Blog Du Hacker&lt;/a&gt;!&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.youtube.com" rel="noopener noreferrer"&gt;Youtube&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F10et3yrb8bb5vbarle3r.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F10et3yrb8bb5vbarle3r.png" alt="Youtubeplatform" width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So here we are with Youtube! This is the platform most of us spend hours and hours on! Here I will not talk about training but more about a specific point. Youtube will be very useful for notions or problems but very little for a complete training! You will also find videos to learn the trades, where to start, etc...&lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
Here, the goal is to give you a brief listing of the platforms that I find the most suitable to start learning about cybersecurity! I hope I was able to help you in your search!&lt;/p&gt;

&lt;p&gt;🐟 Splash!&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>security</category>
      <category>programming</category>
      <category>challenge</category>
    </item>
    <item>
      <title>[FR] Cybersécurité : Quelles sont les meilleures plateformes ?</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Mon, 07 Nov 2022 08:39:18 +0000</pubDate>
      <link>https://dev.to/p0p0/fr-cybersecurite-quelles-sont-les-meilleures-plateformes--39cm</link>
      <guid>https://dev.to/p0p0/fr-cybersecurite-quelles-sont-les-meilleures-plateformes--39cm</guid>
      <description>&lt;h3&gt;
  
  
  Le monde de la cybersécurité vous intéresse ? Logique, c'est top !
&lt;/h3&gt;

&lt;p&gt;Mais comment l'apprendre ? C'est une question dont la réponse reste très compliqué, car le monde de la cybersécurité est large.&lt;/p&gt;

&lt;p&gt;Si vous cherchez à vous sensibiliser, l'ANSSI propose une formation gratuite (MOOC) avec un certificat de réussite : &lt;a href="https://secnumacademie.gouv.fr" rel="noopener noreferrer"&gt;Formation MOOC&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Bon ! Retournons à notre sujet principal ! Je vais ici vous donner des plateformes d'apprentissage de façon subjective, donc il est aussi de votre devoir d'en chercher d'autre !&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://tryhackme.com" rel="noopener noreferrer"&gt;Try Hack Me&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw538sxnngmw1p8insiak.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw538sxnngmw1p8insiak.png" alt="Try Hack Me platform" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;L'un de mes préférés ! Cette plateforme propose une section apprentissage et une section pratique. On a un système de streak (répondre à des questions plusieurs jours d'affilées) et de classement ! Également si vous ne souhaitez pas installer un VM ou l'OS kali, Try Hack Me vous offre la possibilité d'utiliser une machine via le site directement ! Je le trouve très adapté pour commencer !&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.root-me.org" rel="noopener noreferrer"&gt;Root Me&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6g3gofezmojjs2v98tru.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6g3gofezmojjs2v98tru.png" alt="Root Me platform" width="800" height="361"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Root me propose lui directement de se former via des domaines allant de la &lt;a href="https://www.securiteinfo.com/attaques/divers/steganographie.shtml" rel="noopener noreferrer"&gt;stéganographie&lt;/a&gt; aux &lt;a href="https://fr.wikipedia.org/wiki/Cross-site_scripting" rel="noopener noreferrer"&gt;failles XSS&lt;/a&gt;. Elle vous propose des offres d'emplois, des CTF, des news etc !&lt;/p&gt;

&lt;p&gt;Il y a également leur chaîne &lt;a href="https://www.twitch.tv/rootme_org" rel="noopener noreferrer"&gt;Twitch&lt;/a&gt; qui est très intéressante ! &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.hackthebox.com" rel="noopener noreferrer"&gt;Hack The Box&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6idmggxx96257fuouy3d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6idmggxx96257fuouy3d.png" alt="Hack The Box platform" width="800" height="372"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Je le trouve personnellement très complet, facile d'usage et de l'interface très propre ! Il vous propose des exercices par thème et plateforme ! Un système de rank et de certification via &lt;a href="https://academy.hackthebox.com/" rel="noopener noreferrer"&gt;l'academy&lt;/a&gt;. Tout comme Root.me, HTB propose un listing des jobs et des entreprises qui recrutent !&lt;/p&gt;

&lt;p&gt;👉 Le &lt;a href="https://discord.gg/hackthebox" rel="noopener noreferrer"&gt;discord&lt;/a&gt; Hack The Box&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.udemy.com" rel="noopener noreferrer"&gt;Udemy&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0dohbee390gd9l3ubi3e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0dohbee390gd9l3ubi3e.png" alt="Udemy platform" width="800" height="372"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Udemy est une plateforme qui propose des solutions payantes comme gratuites. Ce sont des "professeurs" qui offrent des cours sur divers sujets, dont la cybersécurité ! Ils offrent la plupart du temps un certificat de réussite et un bon portfolio. J'en ai testé plusieurs qui m'ont convenu niveau théorie, mais qui n'en reste pas frustrant côté pratique. Au premier abord, les formations ont l'air cher, mais il suffit d'attendre quelques jours pour avoir des promotions !&lt;/p&gt;

&lt;p&gt;Je vous recommande cette formation pour apprendre les bases : &lt;a href="https://www.udemy.com/course/hacking-ethique-le-cours-complet/" rel="noopener noreferrer"&gt;Hacking Éthique : Le Cours Complet&lt;/a&gt; de &lt;a href="https://www.udemy.com/course/hacking-ethique-le-cours-complet/#instructor-1" rel="noopener noreferrer"&gt;Michel Kartner&lt;/a&gt; qui est fondateur du site : &lt;a href="https://www.leblogduhacker.fr" rel="noopener noreferrer"&gt;Le Blog Du Hacker&lt;/a&gt; ! &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.youtube.com" rel="noopener noreferrer"&gt;Youtube&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F10et3yrb8bb5vbarle3r.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F10et3yrb8bb5vbarle3r.png" alt="Youtubeplatform" width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Alors, nous voici avec Youtube ! C'est la plateforme où la plupart d'entre nous passons des heures et des heures dessus ! Ici je ne vais pas parler de formation mais plus d'un point spécifique. Youtube vous sera très utile pour des notions ou un problèmes mais très peu pour une formation complète ! Vous y trouverez aussi des vidéos pour y apprendre les métiers, où commencer, etc...&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Ici, le but est de vous faire un listing bref des plateformes que je trouve les plus adaptés pour commencer l'apprentissage de la cybersécurité ! J'espère avoir pu vous aider dans vos recherches ! &lt;/p&gt;

&lt;p&gt;🐟 Plouf ! &lt;/p&gt;

</description>
      <category>security</category>
      <category>programming</category>
      <category>cybersecurity</category>
      <category>challenge</category>
    </item>
    <item>
      <title>[Fivem] [RageUI] - Script Teleport Builder</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Fri, 14 Oct 2022 20:06:26 +0000</pubDate>
      <link>https://dev.to/p0p0/fivem-rageui-script-teleport-builder-chb</link>
      <guid>https://dev.to/p0p0/fivem-rageui-script-teleport-builder-chb</guid>
      <description>&lt;p&gt;&lt;strong&gt;Preview :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=4KP3K-iFQ0U" rel="noopener noreferrer"&gt;Vidéo de présentation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Serveur Discord avec le lien du script : &lt;a href="https://discord.gg/yQcMBUUkNc" rel="noopener noreferrer"&gt;Le repère des tanches&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Voici mon script en &lt;strong&gt;RageUI&lt;/strong&gt; pour créer / supprimer des points de téléportation sur FiveM disponible sur mon Discord !&lt;/p&gt;

&lt;p&gt;Features :&lt;/p&gt;

&lt;p&gt;➤ Création de point de téléportation sans reboot&lt;br&gt;
➤ Suppression de point de téléportation avec reboot&lt;br&gt;
➤ Suppression de point de téléportation via un nom !&lt;br&gt;
➤ La langue (FR/EN)&lt;/p&gt;

&lt;p&gt;En cas de question et/ou de problème venez me contacter sur mon discord : &lt;strong&gt;&lt;em&gt;p0p0_l4_t4nch3#1847&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;Réseaux Sociaux :&lt;/p&gt;

&lt;p&gt;➤ &lt;a href="https://www.twitch.tv/p0p0_l4_t4nch3" rel="noopener noreferrer"&gt;Twitch&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://www.instagram.com/p0p0_fivem/" rel="noopener noreferrer"&gt;Instagram&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://dev.to/p0p0"&gt;Dev.to&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://twitter.com/L4P0p0" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✉️ Mail Pro : &lt;a href="mailto:popodevfivem@gmail.com"&gt;popodevfivem@gmail.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>gamedev</category>
      <category>showdev</category>
    </item>
    <item>
      <title>[EN] The secret repo of GitHub ?</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Tue, 06 Sep 2022 17:38:41 +0000</pubDate>
      <link>https://dev.to/p0p0/en-the-secret-repo-of-github--35ac</link>
      <guid>https://dev.to/p0p0/en-the-secret-repo-of-github--35ac</guid>
      <description>&lt;p&gt;Many know this trick, but many do not use it! Why ?!&lt;/p&gt;

&lt;p&gt;We go from a basic Github profile (not pretty 😒) to a profile like this 🤩:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz3syjhsvo5yg6msk9ydl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz3syjhsvo5yg6msk9ydl.png" alt="Image description" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;How to achieve it?&lt;/p&gt;

&lt;p&gt;Very simple !&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;(You will find all the necessary links to continue below the explanations)&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;All you have to do is create a repository that will bear the name of your GitHub &lt;strong&gt;nickname&lt;/strong&gt;! (You will even get a little message indicating that you have found the &lt;em&gt;secret deposit&lt;/em&gt; 🤫)&lt;/p&gt;

&lt;p&gt;You succeed ? Perfect !&lt;br&gt;
We then continue.&lt;/p&gt;

&lt;p&gt;Now everything will happen in your &lt;strong&gt;README&lt;/strong&gt;. If you go there, you can see that it is already pre-configured.&lt;br&gt;
But you're going to say to me: "Is that all you have for us?!"&lt;/p&gt;

&lt;p&gt;And no, because the magic will operate &lt;strong&gt;here&lt;/strong&gt;!&lt;br&gt;
A gentleman by the name of &lt;strong&gt;Rahul Jain&lt;/strong&gt; will make our task easier!&lt;/p&gt;

&lt;p&gt;He automated everything for us!&lt;br&gt;
You will be able to put your information and everything you want to put and then download your own README to put on your repo! Nice isn't it?!&lt;/p&gt;




&lt;p&gt;The link to make your Repo: &lt;a href="https://rahuldkjain.github.io/gh-profile-readme-generator/" rel="noopener noreferrer"&gt;Here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you want to find out more about all this, Guillaume Reygner, who writes a lot of articles, has one on the subject right &lt;a href="https://guillaume-reygner.medium.com/github-profile-master-803c494271ba" rel="noopener noreferrer"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;If you don't like the rendering and you don't have an idea, here is a repository with &lt;a href="https://github.com/abhisheknaiidu/awesome-github-profile-readme" rel="noopener noreferrer"&gt;templates&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you liked this article and/or want to contribute to it, leave a comment/like!&lt;/p&gt;

</description>
      <category>github</category>
      <category>programming</category>
      <category>tutorial</category>
      <category>productivity</category>
    </item>
    <item>
      <title>[FR] Le Repo secret de GitHub ?</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Tue, 06 Sep 2022 17:26:22 +0000</pubDate>
      <link>https://dev.to/p0p0/fr-le-repo-secret-de-github--58gn</link>
      <guid>https://dev.to/p0p0/fr-le-repo-secret-de-github--58gn</guid>
      <description>&lt;p&gt;Beaucoup connaissent cette astuce, mais beaucoup ne l'utilise pas ! Pourquoi ?!&lt;/p&gt;

&lt;p&gt;On passe d'un profil Github basique (pas beau 😒)  à un profil comme celui-ci 🤩  :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuwehdmoxs306ayq2wz72.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuwehdmoxs306ayq2wz72.png" alt="Image description" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Comment y parvenir ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Très simple !&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;(Tu trouveras tout les liens nécessaires pour continuer en dessous des explications)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Il te suffit de créer un repo qui portera le nom de ton &lt;strong&gt;pseudo&lt;/strong&gt; GitHub ! (Tu auras même un petit message indiquant que tu as trouvé le &lt;em&gt;repo secret&lt;/em&gt; 🤫)&lt;/p&gt;

&lt;p&gt;Tu as réussi ? Parfait !&lt;br&gt;
On continue alors.&lt;/p&gt;

&lt;p&gt;A présent tout va se passer dans ton &lt;strong&gt;README&lt;/strong&gt;. Si tu t'y rends, tu peux voir qu'il est déjà pré-configuré.&lt;br&gt;
Mais tu vas me dire : "C'est tout ce que tu as pour nous ?!"&lt;/p&gt;

&lt;p&gt;Et non, car la magie va opérer &lt;strong&gt;ici&lt;/strong&gt; !&lt;br&gt;
Un Monsieur du nom de &lt;strong&gt;Rahul Jain&lt;/strong&gt; va nous faciliter la tâche !&lt;/p&gt;

&lt;p&gt;Il a tout automatisé pour nous !&lt;br&gt;
Tu vas pouvoir mettre tes informations et tout ce que tu désire mettre pour ensuite télécharger ton README tout propre à mettre sur ton repo ! Sympa non ?!&lt;/p&gt;




&lt;p&gt;Le lien pour faire ton Repo : &lt;a href="https://rahuldkjain.github.io/gh-profile-readme-generator/" rel="noopener noreferrer"&gt;Ici&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Si tu veux en découvrir d'avantage sur tout ça, Guillaume Reygner qui fait pas mal d'article en à fait un sur le sujet juste &lt;a href="https://guillaume-reygner.medium.com/github-profile-master-803c494271ba" rel="noopener noreferrer"&gt;&lt;strong&gt;ici&lt;/strong&gt;&lt;/a&gt; !&lt;/p&gt;

&lt;p&gt;Si tu n'aimes pas le rendu et que tu n'as pas d'idée, voici un repo avec des &lt;a href="https://github.com/abhisheknaiidu/awesome-github-profile-readme" rel="noopener noreferrer"&gt;Templates&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Si tu as aimé cet article et/ou que tu souhaites y contribuer, laisse un commentaire/like ! &lt;/p&gt;

</description>
      <category>github</category>
      <category>programming</category>
      <category>tutorial</category>
      <category>productivity</category>
    </item>
    <item>
      <title>[Fivem] [RageUI] - Script Location De Voiture</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Wed, 31 Aug 2022 18:28:52 +0000</pubDate>
      <link>https://dev.to/p0p0/fivem-rageui-script-location-de-voiture-4fdb</link>
      <guid>https://dev.to/p0p0/fivem-rageui-script-location-de-voiture-4fdb</guid>
      <description>&lt;p&gt;Preview :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/LCFB_of1w_0" rel="noopener noreferrer"&gt;Vidéo de présentation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Serveur Discord avec le lien du script :&lt;a href="https://discord.gg/yQcMBUUkNc" rel="noopener noreferrer"&gt;Le repère des tanches&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Voici mon script de location de voiture disponible sur mon Discord !&lt;/p&gt;

&lt;p&gt;Features :&lt;/p&gt;

&lt;p&gt;➤ Prix différent pour chaque véhicule&lt;br&gt;
➤ Plaque avec écrit "Location"&lt;br&gt;
➤ Temps de location modifiable&lt;br&gt;
➤ La langue (FR/EN)&lt;br&gt;
➤ La position du ped&lt;br&gt;
➤ La position du spawn du véhicule&lt;br&gt;
➤ Le temps pour afficher le message d'alerte&lt;/p&gt;

&lt;p&gt;En cas de question et/ou de problème venez me contacter sur mon discord : p0p0_l4_t4nch3#1847&lt;/p&gt;

&lt;p&gt;Réseaux Sociaux :&lt;/p&gt;

&lt;p&gt;➤ &lt;a href="https://www.twitch.tv/p0p0_l4_t4nch3" rel="noopener noreferrer"&gt;Twitch&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://www.instagram.com/p0p0_fivem/" rel="noopener noreferrer"&gt;Instagram&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://dev.to/p0p0"&gt;Dev.to&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://twitter.com/L4P0p0" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✉️ Mail Pro : &lt;a href="mailto:popodevfivem@gmail.com"&gt;popodevfivem@gmail.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>lua</category>
      <category>fivem</category>
      <category>programming</category>
      <category>github</category>
    </item>
    <item>
      <title>[Fivem] [RageUI] - Script de test d'un véhicule au concessionaire</title>
      <dc:creator>Léa Pollet</dc:creator>
      <pubDate>Wed, 31 Aug 2022 18:21:20 +0000</pubDate>
      <link>https://dev.to/p0p0/fivem-rageui-script-de-test-dun-vehicule-au-concessionaire-8n5</link>
      <guid>https://dev.to/p0p0/fivem-rageui-script-de-test-dun-vehicule-au-concessionaire-8n5</guid>
      <description>&lt;p&gt;&lt;strong&gt;Preview :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/E3s-Rd_5bZ4" rel="noopener noreferrer"&gt;Vidéo de présentation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Serveur Discord avec le lien du script : &lt;a href="https://discord.gg/yQcMBUUkNc" rel="noopener noreferrer"&gt;Le repère des tanches&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Voici mon script en &lt;strong&gt;RageUI&lt;/strong&gt; pour tester un véhicule au concessionaire disponible sur mon Discord !&lt;/p&gt;

&lt;p&gt;Features :&lt;/p&gt;

&lt;p&gt;➤ Essai impossible tant que quelqu'un test un véhicule&lt;br&gt;
➤ Prix de test configurable&lt;br&gt;
➤ Plaque avec écrit "Essai"&lt;br&gt;
➤ Le temps pour afficher le message d'alerte&lt;br&gt;
➤ La langue (FR/EN)&lt;br&gt;
➤ Temps de test modifiable&lt;br&gt;
➤ Blips et spawn de voiture modifiable&lt;/p&gt;

&lt;p&gt;En cas de question et/ou de problème venez me contacter sur mon discord : &lt;strong&gt;&lt;em&gt;p0p0_l4_t4nch3#1847&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;Réseaux Sociaux :&lt;/p&gt;

&lt;p&gt;➤ &lt;a href="https://www.twitch.tv/p0p0_l4_t4nch3" rel="noopener noreferrer"&gt;Twitch&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://www.instagram.com/p0p0_fivem/" rel="noopener noreferrer"&gt;Instagram&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://dev.to/p0p0"&gt;Dev.to&lt;/a&gt;&lt;br&gt;
➤ &lt;a href="https://twitter.com/L4P0p0" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✉️ Mail Pro : &lt;a href="mailto:popodevfivem@gmail.com"&gt;popodevfivem@gmail.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>lua</category>
      <category>fivem</category>
      <category>programming</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
