TEST CODES
import os
dirpath = '/home/pi'
def display_files(d):
files = os.listdir(d)
for f in files:
if os.path.isfile(os.path.join(d, f):
print(f)
if __name__ == '__main__':
display_files(dirpath)
.ipsCode {
background-color: #d2d2d2;
}
<html>
<head>
<title>myTablet</title>
</head>
<body>
<h1>Choix de la page</h1>
<br/>
<h2><a href="./generateur_de_consignes.php">Générateur de Consignes</a></h2>
<br/>
<h2><a href="./visionneuse.php">Visionneur de Consignes enregistrées et Interventions réalisées</a></h2>
<br/>
<h2><a href="./qrcodes.php">Télécharger les QRcodes</a></h2>
<br/>
</body>
</html>
let validation = {
// dictionnaire pour suivre les informations remplies
'manip' : false,
'zone' : false,
'support' : false,
'supportCheckbox' : false,
'position' : false,
'positionCheckbox' : false,
'mode' : false,
'type' : false,
'solution' : false,
'apport' : false,
'drainage' : false,
'frequence' : false,
'debut' : false,
'fin' : false,
}
<?php
// renvoie true si la string en argument est au format date
function isDate($value) {
if (!$value) { return false; }
try { new \DateTime($value); return true; }
catch (\Exception $e) { return false; }
}
?>
#include <stdio.h>
int main() {
printf("Hello, World!\n");
int a = 4;
int b = 8;
int c = 0;
printf("%d\n", c);
c = a + b;
printf("%d\n", c);
return 0;
}
SELECT * FROM greenhouses WHERE name like '%CO%' ORDER BY id