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
python -m venv .venv | |
.venv\Scripts\activate.bat |
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
<VirtualHost *:443> | |
ServerAdmin webmaster@localhost | |
ServerName labsup.local | |
ServerAlias www.labsup.local | |
DocumentRoot /var/www/labsup-web | |
<Directory "/var/www/labsup-web"> | |
Options -Indexes +Includes +FollowSymLinks +MultiViews | |
AllowOverride All | |
Require all granted |
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
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName labsup.local | |
ServerAlias www.labsup.local | |
DocumentRoot /var/www/labsup-web | |
<Directory "/var/www/labsup-web"> | |
Options -Indexes +Includes +FollowSymLinks +MultiViews | |
AllowOverride All | |
Require all granted |
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
{ | |
"nom": "Rust in peace", | |
"origine": "Forgotten Realms", | |
"personnages" : | |
[ | |
{ | |
"nom": "Karktor", | |
"classes": [ | |
"paladin", | |
"prètre" |
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
# Compiled class file | |
*.class | |
# Log file | |
*.log | |
# BlueJ files | |
*.ctxt | |
# Mobile Tools for Java (J2ME) |
Créer une fonction qui va retourner le maximum d'un tableau d'entiers. Créer les tests unitaires pour tester votre code.
Concepts manipulés :
- Array
Créer une fonction qui prend un texte en paramètre et qui indexe le contenu. Cela signifie qu'une table d'indexation contenant chaque mot utilisé dans le texte ainsi que son nombre d'occurrences est retournée.
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
Show hidden characters
{ | |
"bitwise" : true, | |
"curly" : true, | |
"eqeqeq" : true, | |
"esversion" : 6, | |
"forin" : true, | |
"freeze" : true, | |
"funcscope" : false, | |
"futurehostile" : true, | |
"iterator" : false, |
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
{ | |
// -------------------------------------------------------------------- | |
// JSHint Configuration, Strict Edition | |
// -------------------------------------------------------------------- | |
// | |
// This is a options template for [JSHint][1], using [JSHint example][2] | |
// and [Ory Band's example][3] as basis and setting config values to | |
// be most strict: | |
// | |
// * set all enforcing options to true |