Skip to content

Instantly share code, notes, and snippets.

View jimmyachour's full-sized avatar
🏠
Working from home

jimmyachour

🏠
Working from home
  • Bordeaux
View GitHub Profile
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>findtheprecious</title>
</head>
<body>
<header>
<div class="header-menu">
<h1>FindThePrecious.com</h1>
@jimmyachour
jimmyachour / index.html
Last active February 1, 2019 13:39
gandalf hover
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gandalf</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<img src="http://images.innoveduc.fr/integration_gandalf.png">
@jimmyachour
jimmyachour / index.html
Created February 3, 2019 13:32
Gandalf Hover v2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gandalf</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<img src="http://images.innoveduc.fr/integration_gandalf.png">
@jimmyachour
jimmyachour / index.html
Created February 4, 2019 11:02
oeil de sauron
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Sauron's eye</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
@jimmyachour
jimmyachour / index.html
Last active February 21, 2019 23:48
oeil de sauron bootstrap v2
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Sauron's eye</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
@jimmyachour
jimmyachour / mon_historique.log
Created February 26, 2019 12:56
Enquete Linux
1 pwd
2 cd:D
3 D
4 cd/D:
5 cd / D
6 D:
7* cd
8 cd..
9 cd/d
10 cd:d
@jimmyachour
jimmyachour / arborescence
Created February 26, 2019 15:45
Arborescence linux
JIMMY@DESKTOP-1GTUB04 MINGW64 ~/Documents
$ ls
Adobe/ Fax/ 'Mes vidéos'@
certificate_php_poo.pdf Formation/ 'Modèles Office personnalisés'/
chalet/ 'Ma musique'@ PhoneRescue/
Default.rdp 'Mes images'@ 'Scanned Documents'/
desktop.ini 'Mes maps'/
JIMMY@DESKTOP-1GTUB04 MINGW64 ~/Documents
@jimmyachour
jimmyachour / index.html
Created February 27, 2019 10:28
FindYourPrecious
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>findtheprecious</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
@jimmyachour
jimmyachour / index.php
Created March 10, 2019 12:07
variables declaration and display
<?php
$title = "Indiana Jones et la derniere croisade";
$haveSeen = true;
$released = 1989;
$rate = 8.2;
@jimmyachour
jimmyachour / index.php
Created March 10, 2019 17:29
Decryptage code
<?php
function decryptCode($text)
{
$keyNumber = strlen($text) / 2;
$subString = substr($text, 5, $keyNumber);
$stringWitoutSpace = str_replace("@#?", " ", $subString);