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
| <!DOCTYPE html> | |
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Carte St-Valentin pour Prenom</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| padding: 0; |
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
| <!-- javascript:(function(){if(window.__IC_CRAWLER__)return;window.__IC_CRAWLER__=true;let running=false,paused=true,elements=new Set(["Fire","Water","Earth","Wind"]),results=[],delay=800;window.__IC_QUEUE__=null;window.__IC_TESTED__=null;window.__IC_J__=0;let box=document.createElement("div");box.style="position:fixed;top:40px;right:40px;z-index:999999;background:rgba(20,20,20,0.9);color:#fff;padding:0;border-radius:12px;font-family:monospace;width:300px;box-shadow:0 0 15px rgba(0,255,255,0.4);border:1px solid #0ff;backdrop-filter:blur(6px);";box.innerHTML='<div id="ic_drag" style="padding:10px;background:#0ff2;color:#000;font-weight:bold;cursor:grab;border-radius:12px 12px 0 0;text-align:center;">🔮 Infinite Crawler</div><div style="padding:12px;"><div id="ic_stats" style="margin-bottom:10px;font-size:13px;color:#0ff;">🌱 Éléments : 4<br>🔗 Combinaisons : 0</div><button id="ic_start" style="width:100%;margin-bottom:6px;padding:6px;border-radius:6px;border:none;background:#0f0;color:#000;font-weight:bold;cursor |
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
| /** | |
| * @name Orange Theme | |
| * @description Powered by DevilBro. | |
| * @author MydFriau | |
| * @version 1.0.0 | |
| * @BDEditor DiscordRecolor | |
| */ | |
| @import url('https://mwittrien.github.io/BetterDiscordAddons/Themes/DiscordRecolor/DiscordRecolor.css'); |
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
| import math | |
| import random | |
| class PasswordManager: | |
| """ | |
| Classe pour Gestion Mots-De-Passe: | |
| - Génère mots-de-passe "aléatoirement" | |
| - Fournissant fonction qui hache (non sécurisée) | |
| - Affichage grace __str__ | |
| """ |