Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Find out how we are going to rule the world and what our master Sauron is planning to do" />
<title>FindThePrecious.com</title>
</head>
<body>
<header>
<h1>FindThePrecious.com</h1>
@Morzanne
Morzanne / index.html
Created January 14, 2019 18:37
Sauron css style
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Find out how we are going to rule the world and what our master Sauron is planning to do" />
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<title>FindThePrecious.com</title>
</head>
<body>
<section>
@Morzanne
Morzanne / bootstrap.html
Last active January 16, 2019 20:09
Oeil de sauron
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="stylesheet.css">
<meta charset="utf-8">
<title>L'oeil de Sauron</title>
</head>
@Morzanne
Morzanne / gist:f39e1e36dfc31dbe20387d1cef3af896
Created February 28, 2019 12:13
Enquête à Terminal City
1 pwd
2 ls
3 cd clmystery-master/
4 ls
5 less instructions
6 cd mystery/
7 ls
8 grep "CLUE" crimescene
9 ls
10 grep "Annabel" people
@Morzanne
Morzanne / Commandes Terminal Ubuntu
Created February 28, 2019 19:39
Partage des commandes du Terminal Linux
aurelien@aurelien-GP62-7RE:[/] $ ls
bin etc lib media proc snap sys vmlinuz
boot home lib64 mnt root srv tmp
cdrom initrd.img lost+found opt run starwars usr
dev initrd.img.old lsda poubelle sbin swapfile var
aurelien@aurelien-GP62-7RE:[/] $ cd home/
aurelien@aurelien-GP62-7RE:[/home] $ ls
aurelien poubelle
aurelien@aurelien-GP62-7RE:[/home] $ cd aurelien/
aurelien@aurelien-GP62-7RE:[~] $ ls
@Morzanne
Morzanne / name.js
Created March 11, 2019 12:10
TypeScript
function hello(name) {
console.log("Hello " + name);
}
var firstName = "bob";
hello(firstName);
hello(firstName + " marley");
function concat(a, b) {
return a + b;
}
var wcs = concat("Wild", concat(" Code", " School"));
interface pattesnoires {
nbPattes?: number;
color?: string;
}
class Animal implements pattesnoires{
nbPattes?: number;
color? : string;
cri?: string;
@Morzanne
Morzanne / movie.html
Created March 13, 2019 21:43
JS first quest
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Favorite movie</title>
</head>
<body>
<script src="movie.js"></script>
</body>
</html>
https://image.noelshack.com/fichiers/2019/13/1/1553506387-backlog.jpg
mysql> SELECT * FROM wizard WHERE birthday BETWEEN '1975-01-01' AND '1985-01-01';
+----+-----------+----------+------------+-------------+---------------------------------------+-----------+
| id | firstname | lastname | birthday | birth_place | biography | is_muggle |
+----+-----------+----------+------------+-------------+---------------------------------------+-----------+
| 1 | harry | potter | 1980-07-31 | london | | 0 |
| 2 | hermione | granger | 1979-09-19 | | Friend of Harry Potter | 0 |
| 4 | ron | weasley | 1980-03-01 | | Best friend of Harry | 0 |
| 5 | ginny | weasley | 1981-08-11 | | Sister of Ron and girlfriend of Harry | 0 |
| 6 | fred | weasley | 1978-04-01 | | | 0 |
| 7 | george | weasley | 1978-04-01 | |