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
# Version de Docker compose | |
version: "2" | |
services: | |
web: | |
image: library/php:7.2-apache | |
volumes: | |
- ./:/var/www | |
ports: | |
- "82:80" |
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
Tache | |
-Benchmarquer les APIS payants | |
-Gerer le francais et obtenir le generality insights | |
-Sentiment Analysis | |
-Watson API | |
https://cloud.google.com/products/?hl=fr |
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
Dossier de recherche sur 'analyse de texte francophone.' | |
Analyses, utilisations, observations et présentation des outils d'intelligence artificielle pour l'analyse de données textuels. | |
Recherche et rédaction par Antoine Fortin | |
Sous la suppervision de Julien Bigeault | |
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 | |
function sum($arr, $n) { | |
static $staticSum = 0; | |
if ($n == 0) { | |
$theSum = $staticSum; | |
return $theSum; | |
} | |
$n--; | |
$staticSum += $arr[$n]; |
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
function loopArrayLabelAndValue(obj) { | |
for (var prop in obj) { | |
if (obj.hasOwnProperty(prop)) { | |
// or if (Object.prototype.hasOwnProperty.call(obj,prop)) for safety... | |
alert("prop: " + prop + " value: " + obj[prop]) | |
} | |
} | |
} |
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
Dossier de recherche sur 'analyse de texte francophone.' | |
Analyses, utilisations, observations et présentation des outils d'intelligence artificielle pour l'analyse de données textuels. | |
Recherche et rédaction par Antoine Fortin | |
Sous la suppervision de Julien Bigeault | |
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
KJiu1u2jpsky | |
Plugin | |
Logger | |
GuzzleHttp; | |
Menu -> | |
IBM |
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
Les plugins | |
-> Liste des plugins actifs et innactif | |
-> SI innactif des supprimés | |
->Wordfence et rouler analyse de scan | |
->Assurer que la db est clean | |
->faire les mises a jours de wordpress et p^lugins | |
-> Analyser voir si les plugins on peut les coder nous mêmes | |
->Historique des plugins, maj faites, sont faites ou, version acutelle, version most recent | |
->Wordfence |
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
gulp.task('demo-youness', function() { | |
// Ici sont les items from the task scope | |
let filesToConcat = [ | |
'src/scripts/app.js', | |
'src/scripts/preloader.js', | |
'src/scripts/scroll-down.js', | |
'src/scripts/scroll-top.js', |
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
# Delete files | |
find . -name "*.bak" -type f -delete | |
# List files | |
find . -name "*.bak" -type f | |
# Scpr local to remote repo | |
scp -r ./uploads [email protected]:/var/www/provencherroy.stage.havasmtl.ca/public/wp-content/ |