Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="Author" content="FERRERO Franck">
<meta name="Keywords" content="findThePrecious">
<meta name="Description" content="findThePrecious">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="index.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
@madbrain67
madbrain67 / gist:63dcd516df5dbd4b6fb8c1b2fa5bfc64
Last active January 18, 2019 09:38
Quête CSS Wild code school
<link rel="stylesheet" type="text/css" href="gandalf.css">
<section id="fellows">
<div class="fellows">
<div class="container">
<ul class="flex-container nowrap">
<li class="flex-item">
<div class="relative">
<div class="position-img">
<img src="http://images.innoveduc.fr/integration_gandalf.png" alt="image1">
</div>
/*
* DIVERS
*/
* {
margin:0;
padding:0;
}
.center {
text-align:center;
@madbrain67
madbrain67 / css.css
Last active January 19, 2019 16:08
L'oeil de sauron
.container-fluid {
padding-top: 5%;
padding-bottom: 5%;
}
.row,
.no-gutters,
.col-1,
.col-2
.col-3,
.col-4
1 cd ..
2 ls
3 nano hint1
4 cd mystery/
5 ls
6 head -n 20 people
7 grep "CLUE" crimescene
8 grep "Annabel" people
9 head -n 173 streets/Mattapan_Street | tail -n 1
10 cd interviews/
C:\laragon\www
λ ls
index.php
C:\laragon\www
λ pwd
/c/laragon/www
C:\laragon\www
λ cd
#!/bin/bash
if [[ -z $1 ]]; then
echo Bonjour $(whoami) !
fi
if [[ $1 ]]; then
echo "Bonjour $1 $2 !"
fi
<?php
$title = 'Indiana Jones et la dernière croisade';
$vu = true;
$sortie = 1989;
$note = 8.2;
echo $title;
echo '<br>';
echo $vu;
<?php
$a = array('@', '#', '?');
$b = array(' ', ' ', ' ');
$message1 = "0@sn9sirppa@#?ia'jgtvryko1";
$message2 = 'q8e?wsellecif@#?sel@#?setuotpazdsy0*b9+mw@x1vj';
$message3 = 'aopi?sgnirts@#?sedhtg+p9l!';
$msg1 = strlen($message1) / 2;
<?php
$tableau = array(
(object) array('title' => 'Indiana Jones et le Royaume du Crâne de Cristal',
'acteurs' => array('Harrison Ford', 'Cate Blanchett', 'Karen Allen'),
),
(object) array('title' => 'Indiana Jones et la Dernière Croisade',
'acteurs' => array('Harrison Ford', 'Sean Connery', 'Denholm Elliott'),
),
(object) array('title' => 'Indiana Jones et le Temple maudit',