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" /><!--élément qui définit l'encodage des caractères du document, cela signifie que votre page web sera capable de gérer l'affichage de n'importe quelle langue--> | |
<link rel="stylesheet" href="style_FindThePrecious_1.css"/> | |
<title>FindThePrecious.com</title><!--élément qui donne un intitulé au document--> | |
<meta name="author" content="Toua VA"><!--élément qui permet de définir l'auteur et donner une description de son contenu--> | |
<meta name="descritption" content="Réalisation de la quête intégration WCS."> | |
</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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Catch'em all!</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<section> | |
<img class="hover-effect" src="http://images.innoveduc.fr/integration_parcours/css/css_selectors_props/hobbit-house.jpg" alt="Hobbit house"> |
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>Find the precious!</title> | |
<link rel="stylesheet" href="style_css_box_model.css"> | |
</head> | |
<body> | |
<nav> | |
<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
To run a command as administrator (user "root"), use "sudo <command>". | |
See "man sudo_root" for details. | |
wilder@Gollum:~$ ls | |
Bureau examples.desktop Modèles Public Téléchargements | |
Documents Images Musique snap Vidéos | |
wilder@Gollum:~$ ls . | |
Bureau examples.desktop Modèles Public Téléchargements | |
Documents Images Musique snap Vidéos | |
wilder@Gollum:~$ ls-a |
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, maximum-scale=1.0' /> | |
<title>Find the precious!</title> | |
<link rel="stylesheet" href="Responsive_web_design_style.css"> | |
</head> | |
<body> |
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
wget https://github.com/bhubr/bhubr.github.io/raw/master/wild/planets.zip | |
unzip planets.zip | |
cd~/quetes/shell | |
cd quetes | |
cd shell | |
eog planets | |
cd planets | |
mkdir real | |
mkdir fictional | |
mkdir inhabited |
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
Lien concernant le PHP | |
https://dev.to/pmarcus93/using-regex-to-find-and-remove-commented-php-code-and-improve-readability-3dap | |
Information du 07 sept 2019. | |
Sur cet article, nous pouvons trouver des expressions rationnelles qui permettent de trouver et supprimer le code PHP commenté et améliorer sa lisibilité. | |
-------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
Lien concernant le 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
<?php | |
$film = "Indiana Jones and the Last Crusade"; | |
$dejavu = true; | |
$annee = 1989; | |
$note = 8.2; | |
echo 'Le titre du film est ' . $film . '.<br>'; | |
echo $dejavu . '<br>'; | |
echo 'Le film est sortie en ' . $annee . '.<br>'; | |
echo 'Le film a une note de ' . $note . ' sur le site IMdb.'; |
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
<?php | |
$message1 = "0@sn9sirppa@#?ia'jgtvryko1"; | |
$message2 = "q8e?wsellecif@#?sel@#?setuotpazdsy0*b9+mw@x1vj"; | |
$message3 = "aopi?sgnirts@#?sedhtg+p9l!"; | |
$chiffreclé = strlen($message1) /2; | |
$souschaine1 = substr($message1, 5, $chiffreclé); | |
$newmessage1 = str_replace("@#?", " ", $souschaine1); | |
$new_message1 = strrev($newmessage1); |
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
<?php | |
$array = ['Indiana Jones et le Royaume du Crâne de Cristal' => ['Harisson Ford', 'Cate Blanchett', 'Karen Allen'], | |
'Indiana Jones et la Dernière Croisade' => ['Harisson Ford', 'Sean Connery', 'Denholm Elliott'], | |
'Indiana Jones et le Temple maudit' => ['Harisson Ford', 'Kate Capshaw', 'Jonathan Ke Quan'], | |
]; | |
foreach($array as $k => $v){ | |
echo '<br>Dans le film ' .$k.', les principaux acteurs sont : ' . implode (', ', $v); | |
} |
OlderNewer