This file contains hidden or 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
gist test 1 |
This file contains hidden or 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
1 | |
2 cd Code/WildCodeSchool/quete_unix | |
3 cat instructions | |
4 cat hint* | |
5 cd mystery | |
6 ls | |
7 grep "CLUE" crimescene | |
8 grep "Annabel" people | grep "\tF\t" | |
9 head -n 40 streets/Hart_Place | tail -n 1 | |
10 SEE INTERVIEW #47246024 |
This file contains hidden or 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> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<p>La réponse positive attendu est un 'oui'</p> | |
<p>La réponse négative attendu est un 'non'</p> | |
<script type="text/javascript"> |
This file contains hidden or 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
<?php | |
class Person | |
{ | |
private $name; | |
private $firstname; | |
private $address; | |
private $date_of_birth; | |
function __construct($name, $firstname, $address, $date_of_birth){ |
This file contains hidden or 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
set nocompatible | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
" set tabstop=4 | |
" " when indenting with '>', use 4 spaces width | |
" set shiftwidth=4 | |
" " On pressing tab, insert 4 spaces | |
" set expandtab | |
syntax on |
OlderNewer