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="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>FindThePrecious</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>FindThePrecious.com</h1> | |
| <ul> |
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="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>FindThePrecious</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>FindThePrecious.com</h1> | |
| <ul> |
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
| .carreG{ | |
| background-color:#3d3d3d; | |
| display:block; | |
| padding-bottom:8%; | |
| border:1px solid white; | |
| } | |
| .carreJ{ | |
| background-color:yellow; |
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
| entrée réelle (argent) | |
| entrée réelle (prix) | |
| Si argent et prix>0 | |
| tant que argent>prix | |
| nbBonbons<- nbBonbons+1 | |
| argent<- argent-prix | |
| fin tant que | |
| fin si | |
| retourner nbBonbons |
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
| Variables: | |
| nombreChoisi | |
| DEBUT | |
| répéter nombreChoisi de fois: | |
| écrire "Bienvenue à la wild" | |
| fin répéter | |
| Fin |
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
| Trouve l'expression régulière qui cherche la seule occurrence du deuxième prénom de Néo (soit le A. de "Thomas A. Anderson): | |
| /\b\w\./ | |
| Trouve l'expression régulière qui cherche la date contenue dans le document: | |
| /\d{2}\/\d{2}\/\d{4}/ | |
| Trouve l'expression qui cherche la note contenue dans le texte, sans pour autant sélectionner une partie de la date: |
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="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Bases de JavaScript 1 - Découverte du langage</title> | |
| </head> | |
| <body> | |
| <script src="film_favoris.js"></script> |
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
| for (let i = 1 ; i < 100 ; i ++) | |
| { | |
| console.log(i); | |
| if (i%3 == 0 && i%5 == 0) { | |
| console.log(i + " Wild Code School") ;} | |
| else if (i%5 == 0) { | |
| console.log(i + " Code");} | |
| else if (i%3 == 0){ | |
| console.log(i + " Wild");} | |
| } |
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
| #!/bin/bash | |
| u=$USER | |
| if [ -z $1 ] | |
| then | |
| echo "Bonjour $u !" | |
| else | |
| echo "Bonjour $1 !" | |
| fi |
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
| 298 cd Documents/ | |
| 299 ls | |
| 300 cd clmystery-master/ | |
| 301 ls | |
| 302 cat hint1 | |
| 303 cat hint2 | |
| 304 cat hint3 | |
| 305 cat hint4 | |
| 306 cat hint5 | |
| 307 cat hint6 |
OlderNewer