Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>FindThePrecious</title>
</head>
<body>
<header>
<h1>FindThePrecious.com</h1>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
<title>Gandalf</title>
</head>
<body>
<div class="container">
<div class="caption">
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<title>L'oeil de Sauron</title>
</head>
@vigi3
vigi3 / Terminal
Created September 3, 2018 16:53
Terminal
vince@Vince:~$ ls
Desktop Downloads Music Public Templates wilder
Documents examples.desktop Pictures quetes Videos
vince@Vince:~$ ls Downloads
vince@Vince:~$ ls Pictures
vince@Vince:~$ pwd
/home/vince
vince@Vince:~$ cd ..
vince@Vince:/home$ pwd
/home
<?php
$titre="Indiana Jones and the Last Crusade";
echo "$titre", '<br>';
$visionnage=true;
if ($visionnage==true)
{
echo "La réponse est OUI", '<br>';
@vigi3
vigi3 / quete2
Last active September 10, 2018 19:20
<?php
$weapons = ['fists', 'whip', 'gun'];
$opponentWeapon = $weapons[rand(0,2)]; // Cela permet de choisir une arme de manière aléatoire.
// TODO
$indyWeapon=array();
if ($opponentWeapon=='fists')
{
<?php
$message="0@sn9sirppa@#?ia'jgtvryko1";
$length=strlen($message);
$keyData=strlen($message) / 2 ;
$rest=substr($message, 5, $keyData);
$replace=str_replace("@#?", " ", $rest);
echo strrev($replace), ' ';
$message="q8e?wsellecif@#?sel@#?setuotpazdsy0*b9+mw@x1vj";
@vigi3
vigi3 / tableau.php
Last active September 11, 2018 16:22
<?php
$film=[
'Indiana Jones et le Royaume du Crane de Cristal' => ['Harrison Ford', 'Cate Blanchett', 'Shia Leboeuf'],
'Indiana Jones et la Derniere Croisade'=> ['Harrison Ford', 'Sean Connery', 'John Rhys-Davies'],
'Les aventuriers de l Arche du perdue'=> ['Harrison Ford', 'Karen Allen', 'Paul Freeman'],
];
foreach ($film as $key => $value) {
echo "Dans le film $key, les principaux acteurs sont : ";
<?php
function writeSecretSentence(string $PARAMETRE_1, string $PARAMETRE_2){
return "$PARAMETRE_1 s'incline face à $PARAMETRE_2";
}
echo writeSecretSentence("La lune", "au feu");
@vigi3
vigi3 / form.php
Last active September 13, 2018 14:12
<?php
if($_POST){
//not empty
//
$errors = array();
//start validation
if (empty($_POST['nom'])) {