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="aa"> | |
| <head> | |
| <title>findThePrecious.com</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>findThePrecious.com</h1> | |
| <nav> | |
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
| #general{ | |
| position:relative; | |
| border-style: solid; | |
| border-color: grey; | |
| display:block; | |
| float:left; | |
| width: 500px; | |
| } | |
| .recompense{ |
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
| .row{ | |
| justify-content: space-between; | |
| border-bottom: 1px; | |
| border-right : 1px; | |
| border-style: solid; | |
| border-color: white; | |
| } | |
| .black{ |
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
| 89 touch newfile.txt | |
| 90 clear | |
| 91 cd Desktop | |
| 92 cd LOL | |
| 93 cd mystery | |
| 94 cd streets | |
| 95 cat "Annabel" Buckingham_Place > RueAnnabel.txt | |
| 96 cat "Annabel" Buckingham_Place > RueAnnabel.txt | |
| 97 grep "Annabel" Buckingham_Place > RueAnnabel.txt | |
| 98 cat Buckingham_Place |
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 | |
| nbUtilisateur <-Demander nombre | |
| Debut algorithme MON_ALGO | |
| Lire nbUtilisateur | |
| Pour i de 0 à nbUtilisateur (par pas de 1), faire | |
| Afficher "Bienvenue à la wild" | |
| Fin Pour | |
| Fin algorithme MON_ALGO |
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> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>Page Title</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <script src="Javacript.js"></script> | |
| </head> |
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
| process.stdin.resume() | |
| process.stdin.setEncoding('utf8') | |
| let i=0; | |
| console.log('How old are you ? ') | |
| process.stdin.on('data', (number) => { | |
| i=parseInt(number); | |
| if(i>=18 && i<=99){ | |
| i= 2018 -i; | |
| console.log('tu es né(e) en ' + i) | |
| }else if(i==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
| var cowsay = require("cowsay"); | |
| console.log(cowsay.say({ | |
| text : "hello boy", | |
| e : "oO", | |
| T : "U " | |
| })); |
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
| http://image.noelshack.com/fichiers/2018/43/2/1540296997-capture-d-ecran-2018-10-23-a-14-12-46.png | |
| http://image.noelshack.com/fichiers/2018/43/2/1540297006-scrum2.jpeg |
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 React, { Component } from 'react'; | |
| class Timer extends Component { | |
| constructor(props){ | |
| super(props); | |
| this.state={valeur:0} | |
| } |
OlderNewer