<?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: Rahman</title>
    <description>The latest articles on DEV Community by Rahman (@rehman258).</description>
    <link>https://dev.to/rehman258</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F958720%2F3f51baa9-42d9-46a9-9360-887bb6985348.jpeg</url>
      <title>DEV Community: Rahman</title>
      <link>https://dev.to/rehman258</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rehman258"/>
    <language>en</language>
    <item>
      <title>Comment fonctionne vraiment un QR code WiFi</title>
      <dc:creator>Rahman</dc:creator>
      <pubDate>Mon, 21 Sep 2026 21:31:56 +0000</pubDate>
      <link>https://dev.to/rehman258/comment-fonctionne-vraiment-un-qr-code-wifi-5c08</link>
      <guid>https://dev.to/rehman258/comment-fonctionne-vraiment-un-qr-code-wifi-5c08</guid>
      <description>&lt;p&gt;« C'est quoi le mot de passe du WiFi ? » Un QR code WiFi supprime cette question : on pointe la caméra, on tape une fois, et on est connecté. Voici ce qu'il y a réellement à l'intérieur, et comment en faire un fiable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Ce que le code encode
&lt;/h2&gt;

&lt;p&gt;Un QR code WiFi ne contient pas de magie. C'est une simple chaîne de texte dans un format standard que les téléphones savent lire :&lt;/p&gt;

&lt;p&gt;&lt;code&gt;WIFI:S:NomDuReseau;T:WPA;P:MotDePasse;;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;S&lt;/code&gt; : le nom du réseau (SSID)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;T&lt;/code&gt; : le type de sécurité (WPA, WEP, ou rien)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;P&lt;/code&gt; : le mot de passe&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Quand un téléphone scanne ce texte, l'appareil photo le reconnaît et propose de rejoindre le réseau. iPhone et Android récents gèrent cela nativement, sans application côté invité.&lt;/p&gt;

&lt;h2&gt;
  
  
  Les étapes
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Ouvrez un générateur de QR code WiFi. Vous verrez des champs pour le nom du réseau, le mot de passe et le type de sécurité.&lt;/li&gt;
&lt;li&gt;Tapez le nom du réseau exactement, la casse compte.&lt;/li&gt;
&lt;li&gt;Entrez le mot de passe.&lt;/li&gt;
&lt;li&gt;Choisissez le type de sécurité. Pour presque tout le monde, c'est WPA/WPA2.&lt;/li&gt;
&lt;li&gt;Générez le code et téléchargez-le.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Quelques points à connaître
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Utilisez votre réseau invité si vous en avez un.&lt;/strong&gt; Partager le code de votre réseau principal met tout scanneur sur le même réseau que vos ordinateurs. La plupart des box permettent un réseau invité séparé. Mettez le code sur celui-là.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Régénérez-le après un changement de mot de passe.&lt;/strong&gt; Le mot de passe est encodé dans le code. Si vous le changez, l'ancien code cesse de fonctionner.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Testez avant d'imprimer.&lt;/strong&gt; Scannez votre propre code avec un iPhone et un Android avant de lancer une impression. Vérifiez qu'il rejoint bien le réseau, pas seulement qu'il lit le texte.&lt;/p&gt;

&lt;h2&gt;
  
  
  À essayer
&lt;/h2&gt;

&lt;p&gt;Transparence : j'aide à construire un outil de QR code appelé &lt;a href="https://qrolling.com/fr/wifi-qr-code-generator" rel="noopener noreferrer"&gt;QRolling&lt;/a&gt;. La plupart des fonctions sont une application payante avec une semaine d'essai gratuite, mais le code WiFi est l'exception à connaître : après une inscription rapide, vous pouvez le télécharger comme code statique et l'utiliser gratuitement, sans plan. Voici le générateur avec les champs prêts.&lt;/p&gt;

&lt;p&gt;N'importe quel générateur correct avec les champs SSID, mot de passe et sécurité fait le même travail. Une carte, un scan, et vous ne lisez plus jamais un mot de passe WiFi à voix haute.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tutorial</category>
      <category>networking</category>
    </item>
    <item>
      <title>Static vs dynamic QR codes: which one do you actually need?</title>
      <dc:creator>Rahman</dc:creator>
      <pubDate>Mon, 21 Sep 2026 21:29:20 +0000</pubDate>
      <link>https://dev.to/rehman258/static-vs-dynamic-qr-codes-which-one-do-you-actually-need-onp</link>
      <guid>https://dev.to/rehman258/static-vs-dynamic-qr-codes-which-one-do-you-actually-need-onp</guid>
      <description>&lt;p&gt;If you have generated a QR code recently, you have probably hit a wall: the tool makes one, then the talk of editing or tracking it later gets confusing fast. That confusion is the line between static and dynamic codes, and most people worry about the wrong one.&lt;/p&gt;

&lt;p&gt;Here is the plain version.&lt;/p&gt;

&lt;h2&gt;
  
  
  Static QR codes
&lt;/h2&gt;

&lt;p&gt;A static code holds the data inside the pattern itself. The link, the WiFi password, the contact details, all of it is encoded directly into those black and white squares.&lt;/p&gt;

&lt;p&gt;What that means in practice:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It never expires. A static code printed today works in ten years.&lt;/li&gt;
&lt;li&gt;It works even if the company that made it disappears, because nothing is looked up on a server.&lt;/li&gt;
&lt;li&gt;The catch: you cannot change what it does. If you printed a code pointing to one link, that is the link forever.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dynamic QR codes
&lt;/h2&gt;

&lt;p&gt;A dynamic code does not hold your real link. It holds a short redirect address that points to your link. You control that redirect, so you can change the destination later, and you can count how many people scanned it.&lt;/p&gt;

&lt;p&gt;What that buys you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can repoint the code without reprinting anything.&lt;/li&gt;
&lt;li&gt;You get scan analytics: how many, when, roughly where.&lt;/li&gt;
&lt;li&gt;The catch: it depends on the redirect service staying alive. If the service goes away, the code breaks.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The question to ask before you print
&lt;/h2&gt;

&lt;p&gt;Before you commit anything to a print run, ask: is this code meant to last untouched for years, or will I need to change where it points and see how it performs?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A permanent thing&lt;/strong&gt; (a plaque, a product label, a WiFi card that will not change): a static code is the right tool.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A campaign&lt;/strong&gt; (a poster you will update, a flyer where you want scan numbers): a dynamic code earns its keep.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most everyday personal uses are static. Most marketing uses are dynamic. Knowing which you need saves you from paying for tracking you will never look at, or from printing a code you cannot fix later.&lt;/p&gt;

&lt;h2&gt;
  
  
  A note on tools
&lt;/h2&gt;

&lt;p&gt;Full disclosure: I help build a QR generator called &lt;a href="https://qrolling.com" rel="noopener noreferrer"&gt;QRolling&lt;/a&gt;, so take the mention with that in mind. It handles both types, with brand colors, logos, and a live preview. It is a paid app with a free week to try and pricing on the affordable end, and you sign up before downloading. One genuinely useful perk: the WiFi code can be downloaded as a static code after signup and used without a plan.&lt;/p&gt;

&lt;p&gt;Whatever tool you pick, the rule holds: match the code type to how long it needs to live. Permanent thing, static code. Campaign you will change, dynamic. Decide that first, and the tool choice gets a lot easier.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>marketing</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
