This file contains 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
body { | |
padding-top: 10px; | |
} | |
[class*="col-xs"] { | |
height: 30px; | |
} | |
.white { | |
background-color: white; | |
} |
This file contains 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> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Sacha GRASSO</title> | |
<link rel="stylesheet" href="stylesheet.css"> | |
</head> | |
<body> | |
<div id="header"> | |
<h1>Sacha GRASSO</h1><h2>Fullstack developper</h2> |
This file contains 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
test1 pour quête gist in the CLI |
This file contains 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
Début algo-age | |
yearDate <- l'année actuelle | |
age <- l'age de l'utilisateur | |
(quel est votre âge ?) | |
READ age, yearDate |
This file contains 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
/mystery$ grep "CLUE" crimescene | |
CLUE: Footage from an ATM security camera is blurry but shows that the perpetrator is a tall male, at least 6'. | |
CLUE: Found a wallet believed to belong to the killer: no ID, just loose change, and membership cards for AAA, Delta SkyMiles, the local library, and the Museum of Bash History. The cards are totally untraceable and have no name, for some reason. | |
CLUE: Questioned the barista at the local coffee shop. He said a woman left right before they heard the shots. The name on her latte was Annabel, she had blond spiky hair and a New Zealand accent. | |
======== | |
We're looking for a tall male (+6'), memberships : AAA, Delta Skymiles, library, Museum of Bash History. | |
======== |
This file contains 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
/mystery$ grep "CLUE" crimescene | |
CLUE: Footage from an ATM security camera is blurry but shows that the perpetrator is a tall male, at least 6'. | |
CLUE: Found a wallet believed to belong to the killer: no ID, just loose change, and membership cards for AAA, Delta SkyMiles, the local library, and the Museum of Bash History. The cards are totally untraceable and have no name, for some reason. | |
CLUE: Questioned the barista at the local coffee shop. He said a woman left right before they heard the shots. The name on her latte was Annabel, she had blond spiky hair and a New Zealand accent. | |
======== | |
We're looking for a tall male (+6'), memberships : AAA, Delta Skymiles, library, Museum of Bash History. | |
======== |
This file contains 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
body { | |
background: linear-gradient(to right, #000000, #4F4F4F, #000000); | |
} | |
img { | |
border: solid yellow 2px; | |
padding: 2px; | |
} | |
blockquote { |
This file contains 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> | |
<title></title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> |
This file contains 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
process.stdin.resume() | |
process.stdin.setEncoding('utf8') | |
function isANumber(age){ | |
return !isNaN(age); | |
} | |
console.log('Hello ! What\'s your age ? ') | |
process.stdin.on('data', (age) => { | |
if (isANumber(age) === true && age <= 99) { |
This file contains 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
body { | |
display: flex; | |
flex-direction: column; | |
} | |
div { | |
background-color: grey; | |
text-align: center; | |
width: 50%; | |
margin: auto; |
OlderNewer